home *** CD-ROM | disk | FTP | other *** search
- /*
- ** This is a demonstration of ARexx commands of HTML Editor v 1.32
- **
- ** ARexx ports are named 'HTMLEDIT.1', 'HTMLEDIT.2', etc for every new
- ** running copy of this program
- */
-
- options results
- address 'HTMLEDIT.1'
-
- /*
- ** These are some commands for TextEditor gadget
- */
-
- /* let's paste something from clipboard */
- 'paste'
-
- /* now we'll go to other position */
- 'line 5'
- 'column 5'
-
- /* and write some text there */
- 'text Amiga rules'
-
-
-
- /*
- ** These commands are unique for HTML Editor application.
- ** Note that all these commands starts with 'he_'.
- */
-
- /* create new file */
- 'he_newfile'
-
- /* save this file to ram */
- 'he_save ram:newfile.html'
-
- /* load another file */
- 'he_load s:startup-sequence'
-
- /* refresh HTMLtext gadget */
- 'he_refresh'
-
- /* display an 'about' requester*/
- 'he_about'
-
- /* insert some HTHML tags*/
- 'he_insert <b> </b>'
-